home *** CD-ROM | disk | FTP | other *** search
/ SGI Hot Mix 17 / Hot Mix 17.iso / HM17_SGI / html / vendors / adobe / software / Removeit2 < prev    next >
Text File  |  1997-06-17  |  683b  |  28 lines

  1. #!/bin/csh -f
  2. if ( `versions sgips | grep "sgips.sw" | wc -l` > 0 ) then
  3.                 echo "Found installation... "
  4.                 echo " "
  5.                         echo " "
  6.                         echo "Do you want to remove Adobe Photoshop Performance Package (y/n)?  \c"
  7.                         set ans=($<)
  8.                         if ( $ans == 'y') then
  9.                 versions remove sgips
  10.                 echo ""
  11.                 echo "Done"
  12.                 echo " "
  13.             endif
  14. else
  15. echo "no install"
  16. echo "Done"
  17. echo " "  
  18. echo ""
  19. echo ""
  20. echo "It appears that the Photoshop Performance Package is not currently installed."
  21. echo "Exiting..."
  22. echo ""
  23. echo ""
  24. endif
  25. echo "Press Enter to exit this window...  \c" 
  26. set a = $<
  27.  
  28.